From a2830a0dd6f634147456406c7855881ff298078e Mon Sep 17 00:00:00 2001 From: Ariel Costas Guerrero Date: Thu, 5 Jun 2025 20:03:27 +0200 Subject: Refresh portfolio design and fonts --- src/pages/portfolio/[id].astro | 57 +++--------------------------------------- 1 file changed, 4 insertions(+), 53 deletions(-) (limited to 'src/pages/portfolio/[id].astro') diff --git a/src/pages/portfolio/[id].astro b/src/pages/portfolio/[id].astro index b92ecbd..601ff84 100644 --- a/src/pages/portfolio/[id].astro +++ b/src/pages/portfolio/[id].astro @@ -1,12 +1,7 @@ --- -import Layout from "../../layouts/Layout.astro"; -import { getCollection, render } from "astro:content"; -import { type GetStaticPaths } from "astro"; -import TechnologyBadge from "../../partials/TechnologyBadge.astro"; - -interface Props { - entry: any; -} +import type { GetStaticPaths } from "astro"; +import { getCollection } from "astro:content"; +import PortfolioItemLayout from "@/layouts/PortfolioItemLayout.astro"; export const getStaticPaths: GetStaticPaths = async () => { const entries = await getCollection("portfolio"); @@ -17,50 +12,6 @@ export const getStaticPaths: GetStaticPaths = async () => { }; const { entry } = Astro.props; -const { Content } = await render(entry); --- - - - - - - Volver al portfolio - - -

{entry.data.title}

- - - -

Tecnologías utilizadas

- - { - entry.data.technologies.map((technology: string) => ( - - )) - } -
- - + -- cgit v1.3